home *** CD-ROM | disk | FTP | other *** search
- PCX2EXE
-
- This program converts a PCX file to an executable, allowing
- you show graphics files on systems without a presentation
- program. Just type
-
- PCX2EXE SAMPLE.PCX
-
- and the file SAMPLE.EXE will be created in the current
- directory. Sample is run just like any other executable and
- pressing a key will terminate the display. PCX2EXE supports
- 640x480 16 color files and 320x200 256 color files only.
-
- You can build presentations with PCX2EXE by displaying your
- compiled pcx files from a batch file and using the
- errorlevel generated when you press a key.
-
- The error levels are set as follows:
- errorlevel 1 = page up
- errorlevel 2 = page down
- errorlevel 0 = any other key
- errorlevel -1 = any error condition
-
- Here's an example of how you might use this:
-
- @echo off
- :frame1
- frame1.exe
- if errorlevel 2 goto :frame2
- if errorlevel 1 goto :frame1
- if errorlevel 0 goto :end
- :frame2
- frame2.exe
- if errorlevel 2 goto :frame3
- if errorlevel 1 goto :frame1
- if errorlevel 0 goto :end
- :frame3
- frame3.exe
- if errorlevel 2 goto :end
- if errorlevel 1 goto :frame2
- if errorlevel 0 goto :end
- :end
-
- this batch file will display the previous screen when you
- press page up, the next screen when you press page down and
- exit when any other key is pressed.
-
-
-